home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / locale.py < prev    next >
Text File  |  2008-10-05  |  82KB  |  1,705 lines

  1. """ Locale support.
  2.  
  3.     The module provides low-level access to the C lib's locale APIs
  4.     and adds high level number formatting APIs as well as a locale
  5.     aliasing engine to complement these.
  6.  
  7.     The aliasing engine includes support for many commonly used locale
  8.     names and maps them to values suitable for passing to the C lib's
  9.     setlocale() function. It also includes default encodings for all
  10.     supported locale names.
  11.  
  12. """
  13.  
  14. import sys, encodings, encodings.aliases
  15.  
  16. # Try importing the _locale module.
  17. #
  18. # If this fails, fall back on a basic 'C' locale emulation.
  19.  
  20. # Yuck:  LC_MESSAGES is non-standard:  can't tell whether it exists before
  21. # trying the import.  So __all__ is also fiddled at the end of the file.
  22. __all__ = ["getlocale", "getdefaultlocale", "getpreferredencoding", "Error",
  23.            "setlocale", "resetlocale", "localeconv", "strcoll", "strxfrm",
  24.            "str", "atof", "atoi", "format", "format_string", "currency",
  25.            "normalize", "LC_CTYPE", "LC_COLLATE", "LC_TIME", "LC_MONETARY",
  26.            "LC_NUMERIC", "LC_ALL", "CHAR_MAX"]
  27.  
  28. try:
  29.  
  30.     from _locale import *
  31.  
  32. except ImportError:
  33.  
  34.     # Locale emulation
  35.  
  36.     CHAR_MAX = 127
  37.     LC_ALL = 6
  38.     LC_COLLATE = 3
  39.     LC_CTYPE = 0
  40.     LC_MESSAGES = 5
  41.     LC_MONETARY = 4
  42.     LC_NUMERIC = 1
  43.     LC_TIME = 2
  44.     Error = ValueError
  45.  
  46.     def localeconv():
  47.         """ localeconv() -> dict.
  48.             Returns numeric and monetary locale-specific parameters.
  49.         """
  50.         # 'C' locale default values
  51.         return {'grouping': [127],
  52.                 'currency_symbol': '',
  53.                 'n_sign_posn': 127,
  54.                 'p_cs_precedes': 127,
  55.                 'n_cs_precedes': 127,
  56.                 'mon_grouping': [],
  57.                 'n_sep_by_space': 127,
  58.                 'decimal_point': '.',
  59.                 'negative_sign': '',
  60.                 'positive_sign': '',
  61.                 'p_sep_by_space': 127,
  62.                 'int_curr_symbol': '',
  63.                 'p_sign_posn': 127,
  64.                 'thousands_sep': '',
  65.                 'mon_thousands_sep': '',
  66.                 'frac_digits': 127,
  67.                 'mon_decimal_point': '',
  68.                 'int_frac_digits': 127}
  69.  
  70.     def setlocale(category, value=None):
  71.         """ setlocale(integer,string=None) -> string.
  72.             Activates/queries locale processing.
  73.         """
  74.         if value not in (None, '', 'C'):
  75.             raise Error, '_locale emulation only supports "C" locale'
  76.         return 'C'
  77.  
  78.     def strcoll(a,b):
  79.         """ strcoll(string,string) -> int.
  80.             Compares two strings according to the locale.
  81.         """
  82.         return cmp(a,b)
  83.  
  84.     def strxfrm(s):
  85.         """ strxfrm(string) -> string.
  86.             Returns a string that behaves for cmp locale-aware.
  87.         """
  88.         return s
  89.  
  90. ### Number formatting APIs
  91.  
  92. # Author: Martin von Loewis
  93. # improved by Georg Brandl
  94.  
  95. #perform the grouping from right to left
  96. def _group(s, monetary=False):
  97.     conv = localeconv()
  98.     thousands_sep = conv[monetary and 'mon_thousands_sep' or 'thousands_sep']
  99.     grouping = conv[monetary and 'mon_grouping' or 'grouping']
  100.     if not grouping:
  101.         return (s, 0)
  102.     result = ""
  103.     seps = 0
  104.     spaces = ""
  105.     if s[-1] == ' ':
  106.         sp = s.find(' ')
  107.         spaces = s[sp:]
  108.         s = s[:sp]
  109.     while s and grouping:
  110.         # if grouping is -1, we are done
  111.         if grouping[0] == CHAR_MAX:
  112.             break
  113.         # 0: re-use last group ad infinitum
  114.         elif grouping[0] != 0:
  115.             #process last group
  116.             group = grouping[0]
  117.             grouping = grouping[1:]
  118.         if result:
  119.             result = s[-group:] + thousands_sep + result
  120.             seps += 1
  121.         else:
  122.             result = s[-group:]
  123.         s = s[:-group]
  124.         if s and s[-1] not in "0123456789":
  125.             # the leading string is only spaces and signs
  126.             return s + result + spaces, seps
  127.     if not result:
  128.         return s + spaces, seps
  129.     if s:
  130.         result = s + thousands_sep + result
  131.         seps += 1
  132.     return result + spaces, seps
  133.  
  134. def format(percent, value, grouping=False, monetary=False, *additional):
  135.     """Returns the locale-aware substitution of a %? specifier
  136.     (percent).
  137.  
  138.     additional is for format strings which contain one or more
  139.     '*' modifiers."""
  140.     # this is only for one-percent-specifier strings and this should be checked
  141.     if percent[0] != '%':
  142.         raise ValueError("format() must be given exactly one %char "
  143.                          "format specifier")
  144.     if additional:
  145.         formatted = percent % ((value,) + additional)
  146.     else:
  147.         formatted = percent % value
  148.     # floats and decimal ints need special action!
  149.     if percent[-1] in 'eEfFgG':
  150.         seps = 0
  151.         parts = formatted.split('.')
  152.         if grouping:
  153.             parts[0], seps = _group(parts[0], monetary=monetary)
  154.         decimal_point = localeconv()[monetary and 'mon_decimal_point'
  155.                                               or 'decimal_point']
  156.         formatted = decimal_point.join(parts)
  157.         while seps:
  158.             sp = formatted.find(' ')
  159.             if sp == -1: break
  160.             formatted = formatted[:sp] + formatted[sp+1:]
  161.             seps -= 1
  162.     elif percent[-1] in 'diu':
  163.         if grouping:
  164.             formatted = _group(formatted, monetary=monetary)[0]
  165.     return formatted
  166.  
  167. import re, operator
  168. _percent_re = re.compile(r'%(?:\((?P<key>.*?)\))?'
  169.                          r'(?P<modifiers>[-#0-9 +*.hlL]*?)[eEfFgGdiouxXcrs%]')
  170.  
  171. def format_string(f, val, grouping=False):
  172.     """Formats a string in the same way that the % formatting would use,
  173.     but takes the current locale into account.
  174.     Grouping is applied if the third parameter is true."""
  175.     percents = list(_percent_re.finditer(f))
  176.     new_f = _percent_re.sub('%s', f)
  177.  
  178.     if isinstance(val, tuple):
  179.         new_val = list(val)
  180.         i = 0
  181.         for perc in percents:
  182.             starcount = perc.group('modifiers').count('*')
  183.             new_val[i] = format(perc.group(), new_val[i], grouping, False, *new_val[i+1:i+1+starcount])
  184.             del new_val[i+1:i+1+starcount]
  185.             i += (1 + starcount)
  186.         val = tuple(new_val)
  187.     elif operator.isMappingType(val):
  188.         for perc in percents:
  189.             key = perc.group("key")
  190.             val[key] = format(perc.group(), val[key], grouping)
  191.     else:
  192.         # val is a single value
  193.         val = format(percents[0].group(), val, grouping)
  194.  
  195.     return new_f % val
  196.  
  197. def currency(val, symbol=True, grouping=False, international=False):
  198.     """Formats val according to the currency settings
  199.     in the current locale."""
  200.     conv = localeconv()
  201.  
  202.     # check for illegal values
  203.     digits = conv[international and 'int_frac_digits' or 'frac_digits']
  204.     if digits == 127:
  205.         raise ValueError("Currency formatting is not possible using "
  206.                          "the 'C' locale.")
  207.  
  208.     s = format('%%.%if' % digits, abs(val), grouping, monetary=True)
  209.     # '<' and '>' are markers if the sign must be inserted between symbol and value
  210.     s = '<' + s + '>'
  211.  
  212.     if symbol:
  213.         smb = conv[international and 'int_curr_symbol' or 'currency_symbol']
  214.         precedes = conv[val<0 and 'n_cs_precedes' or 'p_cs_precedes']
  215.         separated = conv[val<0 and 'n_sep_by_space' or 'p_sep_by_space']
  216.  
  217.         if precedes:
  218.             s = smb + (separated and ' ' or '') + s
  219.         else:
  220.             s = s + (separated and ' ' or '') + smb
  221.  
  222.     sign_pos = conv[val<0 and 'n_sign_posn' or 'p_sign_posn']
  223.     sign = conv[val<0 and 'negative_sign' or 'positive_sign']
  224.  
  225.     if sign_pos == 0:
  226.         s = '(' + s + ')'
  227.     elif sign_pos == 1:
  228.         s = sign + s
  229.     elif sign_pos == 2:
  230.         s = s + sign
  231.     elif sign_pos == 3:
  232.         s = s.replace('<', sign)
  233.     elif sign_pos == 4:
  234.         s = s.replace('>', sign)
  235.     else:
  236.         # the default if nothing specified;
  237.         # this should be the most fitting sign position
  238.         s = sign + s
  239.  
  240.     return s.replace('<', '').replace('>', '')
  241.  
  242. def str(val):
  243.     """Convert float to integer, taking the locale into account."""
  244.     return format("%.12g", val)
  245.  
  246. def atof(string, func=float):
  247.     "Parses a string as a float according to the locale settings."
  248.     #First, get rid of the grouping
  249.     ts = localeconv()['thousands_sep']
  250.     if ts:
  251.         string = string.replace(ts, '')
  252.     #next, replace the decimal point with a dot
  253.     dd = localeconv()['decimal_point']
  254.     if dd:
  255.         string = string.replace(dd, '.')
  256.     #finally, parse the string
  257.     return func(string)
  258.  
  259. def atoi(str):
  260.     "Converts a string to an integer according to the locale settings."
  261.     return atof(str, int)
  262.  
  263. def _test():
  264.     setlocale(LC_ALL, "")
  265.     #do grouping
  266.     s1 = format("%d", 123456789,1)
  267.     print s1, "is", atoi(s1)
  268.     #standard formatting
  269.     s1 = str(3.14)
  270.     print s1, "is", atof(s1)
  271.  
  272. ### Locale name aliasing engine
  273.  
  274. # Author: Marc-Andre Lemburg, mal@lemburg.com
  275. # Various tweaks by Fredrik Lundh <fredrik@pythonware.com>
  276.  
  277. # store away the low-level version of setlocale (it's
  278. # overridden below)
  279. _setlocale = setlocale
  280.  
  281. def normalize(localename):
  282.  
  283.     """ Returns a normalized locale code for the given locale
  284.         name.
  285.  
  286.         The returned locale code is formatted for use with
  287.         setlocale().
  288.  
  289.         If normalization fails, the original name is returned
  290.         unchanged.
  291.  
  292.         If the given encoding is not known, the function defaults to
  293.         the default encoding for the locale code just like setlocale()
  294.         does.
  295.  
  296.     """
  297.     # Normalize the locale name and extract the encoding
  298.     fullname = localename.lower()
  299.     if ':' in fullname:
  300.         # ':' is sometimes used as encoding delimiter.
  301.         fullname = fullname.replace(':', '.')
  302.     if '.' in fullname:
  303.         langname, encoding = fullname.split('.')[:2]
  304.         fullname = langname + '.' + encoding
  305.     else:
  306.         langname = fullname
  307.         encoding = ''
  308.  
  309.     # First lookup: fullname (possibly with encoding)
  310.     norm_encoding = encoding.replace('-', '')
  311.     norm_encoding = norm_encoding.replace('_', '')
  312.     lookup_name = langname + '.' + encoding
  313.     code = locale_alias.get(lookup_name, None)
  314.     if code is not None:
  315.         return code
  316.     #print 'first lookup failed'
  317.  
  318.     # Second try: langname (without encoding)
  319.     code = locale_alias.get(langname, None)
  320.     if code is not None:
  321.         #print 'langname lookup succeeded'
  322.         if '.' in code:
  323.             langname, defenc = code.split('.')
  324.         else:
  325.             langname = code
  326.             defenc = ''
  327.         if encoding:
  328.             # Convert the encoding to a C lib compatible encoding string
  329.             norm_encoding = encodings.normalize_encoding(encoding)
  330.             #print 'norm encoding: %r' % norm_encoding
  331.             norm_encoding = encodings.aliases.aliases.get(norm_encoding,
  332.                                                           norm_encoding)
  333.             #print 'aliased encoding: %r' % norm_encoding
  334.             encoding = locale_encoding_alias.get(norm_encoding,
  335.                                                  norm_encoding)
  336.         else:
  337.             encoding = defenc
  338.         #print 'found encoding %r' % encoding
  339.         if encoding:
  340.             return langname + '.' + encoding
  341.         else:
  342.             return langname
  343.  
  344.     else:
  345.         return localename
  346.  
  347. def _parse_localename(localename):
  348.  
  349.     """ Parses the locale code for localename and returns the
  350.         result as tuple (language code, encoding).
  351.  
  352.         The localename is normalized and passed through the locale
  353.         alias engine. A ValueError is raised in case the locale name
  354.         cannot be parsed.
  355.  
  356.         The language code corresponds to RFC 1766.  code and encoding
  357.         can be None in case the values cannot be determined or are
  358.         unknown to this implementation.
  359.  
  360.     """
  361.     code = normalize(localename)
  362.     if '@' in code:
  363.         # Deal with locale modifiers
  364.         code, modifier = code.split('@')
  365.         if modifier == 'euro' and '.' not in code:
  366.             # Assume Latin-9 for @euro locales. This is bogus,
  367.             # since some systems may use other encodings for these
  368.             # locales. Also, we ignore other modifiers.
  369.             return code, 'iso-8859-15'
  370.  
  371.     if '.' in code:
  372.         return tuple(code.split('.')[:2])
  373.     elif code == 'C':
  374.         return None, None
  375.     raise ValueError, 'unknown locale: %s' % localename
  376.  
  377. def _build_localename(localetuple):
  378.  
  379.     """ Builds a locale code from the given tuple (language code,
  380.         encoding).
  381.  
  382.         No aliasing or normalizing takes place.
  383.  
  384.     """
  385.     language, encoding = localetuple
  386.     if language is None:
  387.         language = 'C'
  388.     if encoding is None:
  389.         return language
  390.     else:
  391.         return language + '.' + encoding
  392.  
  393. def getdefaultlocale(envvars=('LC_ALL', 'LC_CTYPE', 'LANG', 'LANGUAGE')):
  394.  
  395.     """ Tries to determine the default locale settings and returns
  396.         them as tuple (language code, encoding).
  397.  
  398.         According to POSIX, a program which has not called
  399.         setlocale(LC_ALL, "") runs using the portable 'C' locale.
  400.         Calling setlocale(LC_ALL, "") lets it use the default locale as
  401.         defined by the LANG variable. Since we don't want to interfere
  402.         with the current locale setting we thus emulate the behavior
  403.         in the way described above.
  404.  
  405.         To maintain compatibility with other platforms, not only the
  406.         LANG variable is tested, but a list of variables given as
  407.         envvars parameter. The first found to be defined will be
  408.         used. envvars defaults to the search path used in GNU gettext;
  409.         it must always contain the variable name 'LANG'.
  410.  
  411.         Except for the code 'C', the language code corresponds to RFC
  412.         1766.  code and encoding can be None in case the values cannot
  413.         be determined.
  414.  
  415.     """
  416.  
  417.     try:
  418.         # check if it's supported by the _locale module
  419.         import _locale
  420.         code, encoding = _locale._getdefaultlocale()
  421.     except (ImportError, AttributeError):
  422.         pass
  423.     else:
  424.         # make sure the code/encoding values are valid
  425.         if sys.platform == "win32" and code and code[:2] == "0x":
  426.             # map windows language identifier to language name
  427.             code = windows_locale.get(int(code, 0))
  428.         # ...add other platform-specific processing here, if
  429.         # necessary...
  430.         return code, encoding
  431.  
  432.     # fall back on POSIX behaviour
  433.     import os
  434.     lookup = os.environ.get
  435.     for variable in envvars:
  436.         localename = lookup(variable,None)
  437.         if localename:
  438.             if variable == 'LANGUAGE':
  439.                 localename = localename.split(':')[0]
  440.             break
  441.     else:
  442.         localename = 'C'
  443.     return _parse_localename(localename)
  444.  
  445.  
  446. def getlocale(category=LC_CTYPE):
  447.  
  448.     """ Returns the current setting for the given locale category as
  449.         tuple (language code, encoding).
  450.  
  451.         category may be one of the LC_* value except LC_ALL. It
  452.         defaults to LC_CTYPE.
  453.  
  454.         Except for the code 'C', the language code corresponds to RFC
  455.         1766.  code and encoding can be None in case the values cannot
  456.         be determined.
  457.  
  458.     """
  459.     localename = _setlocale(category)
  460.     if category == LC_ALL and ';' in localename:
  461.         raise TypeError, 'category LC_ALL is not supported'
  462.     return _parse_localename(localename)
  463.  
  464. def setlocale(category, locale=None):
  465.  
  466.     """ Set the locale for the given category.  The locale can be
  467.         a string, a locale tuple (language code, encoding), or None.
  468.  
  469.         Locale tuples are converted to strings the locale aliasing
  470.         engine.  Locale strings are passed directly to the C lib.
  471.  
  472.         category may be given as one of the LC_* values.
  473.  
  474.     """
  475.     if locale and type(locale) is not type(""):
  476.         # convert to string
  477.         locale = normalize(_build_localename(locale))
  478.     return _setlocale(category, locale)
  479.  
  480. def resetlocale(category=LC_ALL):
  481.  
  482.     """ Sets the locale for category to the default setting.
  483.  
  484.         The default setting is determined by calling
  485.         getdefaultlocale(). category defaults to LC_ALL.
  486.  
  487.     """
  488.     _setlocale(category, _build_localename(getdefaultlocale()))
  489.  
  490. if sys.platform in ('win32', 'darwin', 'mac'):
  491.     # On Win32, this will return the ANSI code page
  492.     # On the Mac, it should return the system encoding;
  493.     # it might return "ascii" instead
  494.     def getpreferredencoding(do_setlocale = True):
  495.         """Return the charset that the user is likely using."""
  496.         import _locale
  497.         return _locale._getdefaultlocale()[1]
  498. else:
  499.     # On Unix, if CODESET is available, use that.
  500.     try:
  501.         CODESET
  502.     except NameError:
  503.         # Fall back to parsing environment variables :-(
  504.         def getpreferredencoding(do_setlocale = True):
  505.             """Return the charset that the user is likely using,
  506.             by looking at environment variables."""
  507.             return getdefaultlocale()[1]
  508.     else:
  509.         def getpreferredencoding(do_setlocale = True):
  510.             """Return the charset that the user is likely using,
  511.             according to the system configuration."""
  512.             if do_setlocale:
  513.                 oldloc = setlocale(LC_CTYPE)
  514.                 setlocale(LC_CTYPE, "")
  515.                 result = nl_langinfo(CODESET)
  516.                 setlocale(LC_CTYPE, oldloc)
  517.                 return result
  518.             else:
  519.                 return nl_langinfo(CODESET)
  520.  
  521.  
  522. ### Database
  523. #
  524. # The following data was extracted from the locale.alias file which
  525. # comes with X11 and then hand edited removing the explicit encoding
  526. # definitions and adding some more aliases. The file is usually
  527. # available as /usr/lib/X11/locale/locale.alias.
  528. #
  529.  
  530. #
  531. # The local_encoding_alias table maps lowercase encoding alias names
  532. # to C locale encoding names (case-sensitive). Note that normalize()
  533. # first looks up the encoding in the encodings.aliases dictionary and
  534. # then applies this mapping to find the correct C lib name for the
  535. # encoding.
  536. #
  537. locale_encoding_alias = {
  538.  
  539.     # Mappings for non-standard encoding names used in locale names
  540.     '437':                          'C',
  541.     'c':                            'C',
  542.     'en':                           'ISO8859-1',
  543.     'jis':                          'JIS7',
  544.     'jis7':                         'JIS7',
  545.     'ajec':                         'eucJP',
  546.  
  547.     # Mappings from Python codec names to C lib encoding names
  548.     'ascii':                        'ISO8859-1',
  549.     'latin_1':                      'ISO8859-1',
  550.     'iso8859_1':                    'ISO8859-1',
  551.     'iso8859_10':                   'ISO8859-10',
  552.     'iso8859_11':                   'ISO8859-11',
  553.     'iso8859_13':                   'ISO8859-13',
  554.     'iso8859_14':                   'ISO8859-14',
  555.     'iso8859_15':                   'ISO8859-15',
  556.     'iso8859_2':                    'ISO8859-2',
  557.     'iso8859_3':                    'ISO8859-3',
  558.     'iso8859_4':                    'ISO8859-4',
  559.     'iso8859_5':                    'ISO8859-5',
  560.     'iso8859_6':                    'ISO8859-6',
  561.     'iso8859_7':                    'ISO8859-7',
  562.     'iso8859_8':                    'ISO8859-8',
  563.     'iso8859_9':                    'ISO8859-9',
  564.     'iso2022_jp':                   'JIS7',
  565.     'shift_jis':                    'SJIS',
  566.     'tactis':                       'TACTIS',
  567.     'euc_jp':                       'eucJP',
  568.     'euc_kr':                       'eucKR',
  569.     'utf_8':                        'UTF8',
  570.     'koi8_r':                       'KOI8-R',
  571.     'koi8_u':                       'KOI8-U',
  572.     # XXX This list is still incomplete. If you know more
  573.     # mappings, please file a bug report. Thanks.
  574. }
  575.  
  576. #
  577. # The locale_alias table maps lowercase alias names to C locale names
  578. # (case-sensitive). Encodings are always separated from the locale
  579. # name using a dot ('.'); they should only be given in case the
  580. # language name is needed to interpret the given encoding alias
  581. # correctly (CJK codes often have this need).
  582. #
  583. # Note that the normalize() function which uses this tables
  584. # removes '_' and '-' characters from the encoding part of the
  585. # locale name before doing the lookup. This saves a lot of
  586. # space in the table.
  587. #
  588. # MAL 2004-12-10:
  589. # Updated alias mapping to most recent locale.alias file
  590. # from X.org distribution using makelocalealias.py.
  591. #
  592. # These are the differences compared to the old mapping (Python 2.4
  593. # and older):
  594. #
  595. #    updated 'bg' -> 'bg_BG.ISO8859-5' to 'bg_BG.CP1251'
  596. #    updated 'bg_bg' -> 'bg_BG.ISO8859-5' to 'bg_BG.CP1251'
  597. #    updated 'bulgarian' -> 'bg_BG.ISO8859-5' to 'bg_BG.CP1251'
  598. #    updated 'cz' -> 'cz_CZ.ISO8859-2' to 'cs_CZ.ISO8859-2'
  599. #    updated 'cz_cz' -> 'cz_CZ.ISO8859-2' to 'cs_CZ.ISO8859-2'
  600. #    updated 'czech' -> 'cs_CS.ISO8859-2' to 'cs_CZ.ISO8859-2'
  601. #    updated 'dutch' -> 'nl_BE.ISO8859-1' to 'nl_NL.ISO8859-1'
  602. #    updated 'et' -> 'et_EE.ISO8859-4' to 'et_EE.ISO8859-15'
  603. #    updated 'et_ee' -> 'et_EE.ISO8859-4' to 'et_EE.ISO8859-15'
  604. #    updated 'fi' -> 'fi_FI.ISO8859-1' to 'fi_FI.ISO8859-15'
  605. #    updated 'fi_fi' -> 'fi_FI.ISO8859-1' to 'fi_FI.ISO8859-15'
  606. #    updated 'iw' -> 'iw_IL.ISO8859-8' to 'he_IL.ISO8859-8'
  607. #    updated 'iw_il' -> 'iw_IL.ISO8859-8' to 'he_IL.ISO8859-8'
  608. #    updated 'japanese' -> 'ja_JP.SJIS' to 'ja_JP.eucJP'
  609. #    updated 'lt' -> 'lt_LT.ISO8859-4' to 'lt_LT.ISO8859-13'
  610. #    updated 'lv' -> 'lv_LV.ISO8859-4' to 'lv_LV.ISO8859-13'
  611. #    updated 'sl' -> 'sl_CS.ISO8859-2' to 'sl_SI.ISO8859-2'
  612. #    updated 'slovene' -> 'sl_CS.ISO8859-2' to 'sl_SI.ISO8859-2'
  613. #    updated 'th_th' -> 'th_TH.TACTIS' to 'th_TH.ISO8859-11'
  614. #    updated 'zh_cn' -> 'zh_CN.eucCN' to 'zh_CN.gb2312'
  615. #    updated 'zh_cn.big5' -> 'zh_TW.eucTW' to 'zh_TW.big5'
  616. #    updated 'zh_tw' -> 'zh_TW.eucTW' to 'zh_TW.big5'
  617. #
  618. locale_alias = {
  619.     'a3':                                   'a3_AZ.KOI8-C',
  620.     'a3_az':                                'a3_AZ.KOI8-C',
  621.     'a3_az.koi8c':                          'a3_AZ.KOI8-C',
  622.     'af':                                   'af_ZA.ISO8859-1',
  623.     'af_za':                                'af_ZA.ISO8859-1',
  624.     'af_za.iso88591':                       'af_ZA.ISO8859-1',
  625.     'am':                                   'am_ET.UTF-8',
  626.     'am_et':                                'am_ET.UTF-8',
  627.     'american':                             'en_US.ISO8859-1',
  628.     'american.iso88591':                    'en_US.ISO8859-1',
  629.     'ar':                                   'ar_AA.ISO8859-6',
  630.     'ar_aa':                                'ar_AA.ISO8859-6',
  631.     'ar_aa.iso88596':                       'ar_AA.ISO8859-6',
  632.     'ar_ae':                                'ar_AE.ISO8859-6',
  633.     'ar_ae.iso88596':                       'ar_AE.ISO8859-6',
  634.     'ar_bh':                                'ar_BH.ISO8859-6',
  635.     'ar_bh.iso88596':                       'ar_BH.ISO8859-6',
  636.     'ar_dz':                                'ar_DZ.ISO8859-6',
  637.     'ar_dz.iso88596':                       'ar_DZ.ISO8859-6',
  638.     'ar_eg':                                'ar_EG.ISO8859-6',
  639.     'ar_eg.iso88596':                       'ar_EG.ISO8859-6',
  640.     'ar_iq':                                'ar_IQ.ISO8859-6',
  641.     'ar_iq.iso88596':                       'ar_IQ.ISO8859-6',
  642.     'ar_jo':                                'ar_JO.ISO8859-6',
  643.     'ar_jo.iso88596':                       'ar_JO.ISO8859-6',
  644.     'ar_kw':                                'ar_KW.ISO8859-6',
  645.     'ar_kw.iso88596':                       'ar_KW.ISO8859-6',
  646.     'ar_lb':                                'ar_LB.ISO8859-6',
  647.     'ar_lb.iso88596':                       'ar_LB.ISO8859-6',
  648.     'ar_ly':                                'ar_LY.ISO8859-6',
  649.     'ar_ly.iso88596':                       'ar_LY.ISO8859-6',
  650.     'ar_ma':                                'ar_MA.ISO8859-6',
  651.     'ar_ma.iso88596':                       'ar_MA.ISO8859-6',
  652.     'ar_om':                                'ar_OM.ISO8859-6',
  653.     'ar_om.iso88596':                       'ar_OM.ISO8859-6',
  654.     'ar_qa':                                'ar_QA.ISO8859-6',
  655.     'ar_qa.iso88596':                       'ar_QA.ISO8859-6',
  656.     'ar_sa':                                'ar_SA.ISO8859-6',
  657.     'ar_sa.iso88596':                       'ar_SA.ISO8859-6',
  658.     'ar_sd':                                'ar_SD.ISO8859-6',
  659.     'ar_sd.iso88596':                       'ar_SD.ISO8859-6',
  660.     'ar_sy':                                'ar_SY.ISO8859-6',
  661.     'ar_sy.iso88596':                       'ar_SY.ISO8859-6',
  662.     'ar_tn':                                'ar_TN.ISO8859-6',
  663.     'ar_tn.iso88596':                       'ar_TN.ISO8859-6',
  664.     'ar_ye':                                'ar_YE.ISO8859-6',
  665.     'ar_ye.iso88596':                       'ar_YE.ISO8859-6',
  666.     'arabic':                               'ar_AA.ISO8859-6',
  667.     'arabic.iso88596':                      'ar_AA.ISO8859-6',
  668.     'as':                                   'as_IN.UTF-8',
  669.     'az':                                   'az_AZ.ISO8859-9E',
  670.     'az_az':                                'az_AZ.ISO8859-9E',
  671.     'az_az.iso88599e':                      'az_AZ.ISO8859-9E',
  672.     'be':                                   'be_BY.CP1251',
  673.     'be_by':                                'be_BY.CP1251',
  674.     'be_by.cp1251':                         'be_BY.CP1251',
  675.     'be_by.microsoftcp1251':                'be_BY.CP1251',
  676.     'bg':                                   'bg_BG.CP1251',
  677.     'bg_bg':                                'bg_BG.CP1251',
  678.     'bg_bg.cp1251':                         'bg_BG.CP1251',
  679.     'bg_bg.iso88595':                       'bg_BG.ISO8859-5',
  680.     'bg_bg.koi8r':                          'bg_BG.KOI8-R',
  681.     'bg_bg.microsoftcp1251':                'bg_BG.CP1251',
  682.     'bokmal':                               'nb_NO.ISO8859-1',
  683.     'bokm\xe5l':                            'nb_NO.ISO8859-1',
  684.     'bokm\xef\xbf\xbd':                     'nb_NO.ISO8859-1',
  685.     'br':                                   'br_FR.ISO8859-1',
  686.     'br_fr':                                'br_FR.ISO8859-1',
  687.     'br_fr.iso88591':                       'br_FR.ISO8859-1',
  688.     'br_fr.iso885914':                      'br_FR.ISO8859-14',
  689.     'br_fr.iso885915':                      'br_FR.ISO8859-15',
  690.     'br_fr.iso885915@euro':                 'br_FR.ISO8859-15',
  691.     'br_fr.utf8@euro':                      'br_FR.UTF-8',
  692.     'br_fr@euro':                           'br_FR.ISO8859-15',
  693.     'bs':                                   'bs_BA.ISO8859-2',
  694.     'bs_ba':                                'bs_BA.ISO8859-2',
  695.     'bs_ba.iso88592':                       'bs_BA.ISO8859-2',
  696.     'bulgarian':                            'bg_BG.CP1251',
  697.     'c':                                    'C',
  698.     'c-french':                             'fr_CA.ISO8859-1',
  699.     'c-french.iso88591':                    'fr_CA.ISO8859-1',
  700.     'c.en':                                 'C',
  701.     'c.iso88591':                           'en_US.ISO8859-1',
  702.     'c_c':                                  'C',
  703.     'c_c.c':                                'C',
  704.     'ca':                                   'ca_ES.ISO8859-1',
  705.     'ca_ad':                                'ca_AD.ISO8859-1',
  706.     'ca_ad.iso88591':                       'ca_AD.ISO8859-1',
  707.     'ca_ad.iso885915':                      'ca_AD.ISO8859-15',
  708.     'ca_ad.iso885915@euro':                 'ca_AD.ISO8859-15',
  709.     'ca_ad.utf8@euro':                      'ca_AD.UTF-8',
  710.     'ca_ad@euro':                           'ca_AD.ISO8859-15',
  711.     'ca_es':                                'ca_ES.ISO8859-1',
  712.     'ca_es.iso88591':                       'ca_ES.ISO8859-1',
  713.     'ca_es.iso885915':                      'ca_ES.ISO8859-15',
  714.     'ca_es.iso885915@euro':                 'ca_ES.ISO8859-15',
  715.     'ca_es.utf8@euro':                      'ca_ES.UTF-8',
  716.     'ca_es@euro':                           'ca_ES.ISO8859-15',
  717.     'ca_fr':                                'ca_FR.ISO8859-1',
  718.     'ca_fr.iso88591':                       'ca_FR.ISO8859-1',
  719.     'ca_fr.iso885915':                      'ca_FR.ISO8859-15',
  720.     'ca_fr.iso885915@euro':                 'ca_FR.ISO8859-15',
  721.     'ca_fr.utf8@euro':                      'ca_FR.UTF-8',
  722.     'ca_fr@euro':                           'ca_FR.ISO8859-15',
  723.     'ca_it':                                'ca_IT.ISO8859-1',
  724.     'ca_it.iso88591':                       'ca_IT.ISO8859-1',
  725.     'ca_it.iso885915':                      'ca_IT.ISO8859-15',
  726.     'ca_it.iso885915@euro':                 'ca_IT.ISO8859-15',
  727.     'ca_it.utf8@euro':                      'ca_IT.UTF-8',
  728.     'ca_it@euro':                           'ca_IT.ISO8859-15',
  729.     'catalan':                              'ca_ES.ISO8859-1',
  730.     'cextend':                              'en_US.ISO8859-1',
  731.     'cextend.en':                           'en_US.ISO8859-1',
  732.     'chinese-s':                            'zh_CN.eucCN',
  733.     'chinese-t':                            'zh_TW.eucTW',
  734.     'croatian':                             'hr_HR.ISO8859-2',
  735.     'cs':                                   'cs_CZ.ISO8859-2',
  736.     'cs_cs':                                'cs_CZ.ISO8859-2',
  737.     'cs_cs.iso88592':                       'cs_CS.ISO8859-2',
  738.     'cs_cz':                                'cs_CZ.ISO8859-2',
  739.     'cs_cz.iso88592':                       'cs_CZ.ISO8859-2',
  740.     'cy':                                   'cy_GB.ISO8859-1',
  741.     'cy_gb':                                'cy_GB.ISO8859-1',
  742.     'cy_gb.iso88591':                       'cy_GB.ISO8859-1',
  743.     'cy_gb.iso885914':                      'cy_GB.ISO8859-14',
  744.     'cy_gb.iso885915':                      'cy_GB.ISO8859-15',
  745.     'cy_gb@euro':                           'cy_GB.ISO8859-15',
  746.     'cz':                                   'cs_CZ.ISO8859-2',
  747.     'cz_cz':                                'cs_CZ.ISO8859-2',
  748.     'czech':                                'cs_CZ.ISO8859-2',
  749.     'da':                                   'da_DK.ISO8859-1',
  750.     'da_dk':                                'da_DK.ISO8859-1',
  751.     'da_dk.88591':                          'da_DK.ISO8859-1',
  752.     'da_dk.885915':                         'da_DK.ISO8859-15',
  753.     'da_dk.iso88591':                       'da_DK.ISO8859-1',
  754.     'da_dk.iso885915':                      'da_DK.ISO8859-15',
  755.     'da_dk@euro':                           'da_DK.ISO8859-15',
  756.     'danish':                               'da_DK.ISO8859-1',
  757.     'danish.iso88591':                      'da_DK.ISO8859-1',
  758.     'dansk':                                'da_DK.ISO8859-1',
  759.     'de':                                   'de_DE.ISO8859-1',
  760.     'de_at':                                'de_AT.ISO8859-1',
  761.     'de_at.iso88591':                       'de_AT.ISO8859-1',
  762.     'de_at.iso885915':                      'de_AT.ISO8859-15',
  763.     'de_at.iso885915@euro':                 'de_AT.ISO8859-15',
  764.     'de_at.utf8@euro':                      'de_AT.UTF-8',
  765.     'de_at@euro':                           'de_AT.ISO8859-15',
  766.     'de_be':                                'de_BE.ISO8859-1',
  767.     'de_be.iso88591':                       'de_BE.ISO8859-1',
  768.     'de_be.iso885915':                      'de_BE.ISO8859-15',
  769.     'de_be.iso885915@euro':                 'de_BE.ISO8859-15',
  770.     'de_be.utf8@euro':                      'de_BE.UTF-8',
  771.     'de_be@euro':                           'de_BE.ISO8859-15',
  772.     'de_ch':                                'de_CH.ISO8859-1',
  773.     'de_ch.iso88591':                       'de_CH.ISO8859-1',
  774.     'de_ch.iso885915':                      'de_CH.ISO8859-15',
  775.     'de_ch@euro':                           'de_CH.ISO8859-15',
  776.     'de_de':                                'de_DE.ISO8859-1',
  777.     'de_de.88591':                          'de_DE.ISO8859-1',
  778.     'de_de.885915':                         'de_DE.ISO8859-15',
  779.     'de_de.885915@euro':                    'de_DE.ISO8859-15',
  780.     'de_de.iso88591':                       'de_DE.ISO8859-1',
  781.     'de_de.iso885915':                      'de_DE.ISO8859-15',
  782.     'de_de.iso885915@euro':                 'de_DE.ISO8859-15',
  783.     'de_de.utf8@euro':                      'de_DE.UTF-8',
  784.     'de_de@euro':                           'de_DE.ISO8859-15',
  785.     'de_lu':                                'de_LU.ISO8859-1',
  786.     'de_lu.iso88591':                       'de_LU.ISO8859-1',
  787.     'de_lu.iso885915':                      'de_LU.ISO8859-15',
  788.     'de_lu.iso885915@euro':                 'de_LU.ISO8859-15',
  789.     'de_lu.utf8@euro':                      'de_LU.UTF-8',
  790.     'de_lu@euro':                           'de_LU.ISO8859-15',
  791.     'deutsch':                              'de_DE.ISO8859-1',
  792.     'dutch':                                'nl_NL.ISO8859-1',
  793.     'dutch.iso88591':                       'nl_BE.ISO8859-1',
  794.     'ee':                                   'ee_EE.ISO8859-4',
  795.     'ee_ee':                                'ee_EE.ISO8859-4',
  796.     'ee_ee.iso88594':                       'ee_EE.ISO8859-4',
  797.     'eesti':                                'et_EE.ISO8859-1',
  798.     'el':                                   'el_GR.ISO8859-7',
  799.     'el_gr':                                'el_GR.ISO8859-7',
  800.     'el_gr.iso88597':                       'el_GR.ISO8859-7',
  801.     'el_gr@euro':                           'el_GR.ISO8859-15',
  802.     'en':                                   'en_US.ISO8859-1',
  803.     'en.iso88591':                          'en_US.ISO8859-1',
  804.     'en_au':                                'en_AU.ISO8859-1',
  805.     'en_au.iso88591':                       'en_AU.ISO8859-1',
  806.     'en_be':                                'en_BE.ISO8859-1',
  807.     'en_be@euro':                           'en_BE.ISO8859-15',
  808.     'en_bw':                                'en_BW.ISO8859-1',
  809.     'en_bw.iso88591':                       'en_BW.ISO8859-1',
  810.     'en_ca':                                'en_CA.ISO8859-1',
  811.     'en_ca.iso88591':                       'en_CA.ISO8859-1',
  812.     'en_dk':                                'en_DK.ISO8859-1',
  813.     'en_dk.iso88591':                       'en_DK.ISO8859-1',
  814.     'en_dk.iso885915':                      'en_DK.ISO8859-15',
  815.     'en_gb':                                'en_GB.ISO8859-1',
  816.     'en_gb.88591':                          'en_GB.ISO8859-1',
  817.     'en_gb.iso88591':                       'en_GB.ISO8859-1',
  818.     'en_gb.iso885915':                      'en_GB.ISO8859-15',
  819.     'en_gb@euro':                           'en_GB.ISO8859-15',
  820.     'en_hk':                                'en_HK.ISO8859-1',
  821.     'en_hk.iso88591':                       'en_HK.ISO8859-1',
  822.     'en_ie':                                'en_IE.ISO8859-1',
  823.     'en_ie.iso88591':                       'en_IE.ISO8859-1',
  824.     'en_ie.iso885915':                      'en_IE.ISO8859-15',
  825.     'en_ie.iso885915@euro':                 'en_IE.ISO8859-15',
  826.     'en_ie.utf8@euro':                      'en_IE.UTF-8',
  827.     'en_ie@euro':                           'en_IE.ISO8859-15',
  828.     'en_in':                                'en_IN.ISO8859-1',
  829.     'en_nz':                                'en_NZ.ISO8859-1',
  830.     'en_nz.iso88591':                       'en_NZ.ISO8859-1',
  831.     'en_ph':                                'en_PH.ISO8859-1',
  832.     'en_ph.iso88591':                       'en_PH.ISO8859-1',
  833.     'en_sg':                                'en_SG.ISO8859-1',
  834.     'en_sg.iso88591':                       'en_SG.ISO8859-1',
  835.     'en_uk':                                'en_GB.ISO8859-1',
  836.     'en_us':                                'en_US.ISO8859-1',
  837.     'en_us.88591':                          'en_US.ISO8859-1',
  838.     'en_us.885915':                         'en_US.ISO8859-15',
  839.     'en_us.iso88591':                       'en_US.ISO8859-1',
  840.     'en_us.iso885915':                      'en_US.ISO8859-15',
  841.     'en_us.iso885915@euro':                 'en_US.ISO8859-15',
  842.     'en_us@euro':                           'en_US.ISO8859-15',
  843.     'en_us@euro@euro':                      'en_US.ISO8859-15',
  844.     'en_za':                                'en_ZA.ISO8859-1',
  845.     'en_za.88591':                          'en_ZA.ISO8859-1',
  846.     'en_za.iso88591':                       'en_ZA.ISO8859-1',
  847.     'en_za.iso885915':                      'en_ZA.ISO8859-15',
  848.     'en_za@euro':                           'en_ZA.ISO8859-15',
  849.     'en_zw':                                'en_ZW.ISO8859-1',
  850.     'en_zw.iso88591':                       'en_ZW.ISO8859-1',
  851.     'eng_gb':                               'en_GB.ISO8859-1',
  852.     'eng_gb.8859':                          'en_GB.ISO8859-1',
  853.     'english':                              'en_EN.ISO8859-1',
  854.     'english.iso88591':                     'en_US.ISO8859-1',
  855.     'english_uk':                           'en_GB.ISO8859-1',
  856.     'english_uk.8859':                      'en_GB.ISO8859-1',
  857.     'english_united-states':                'en_US.ISO8859-1',
  858.     'english_united-states.437':            'C',
  859.     'english_us':                           'en_US.ISO8859-1',
  860.     'english_us.8859':                      'en_US.ISO8859-1',
  861.     'english_us.ascii':                     'en_US.ISO8859-1',
  862.     'eo':                                   'eo_XX.ISO8859-3',
  863.     'eo_eo':                                'eo_EO.ISO8859-3',
  864.     'eo_eo.iso88593':                       'eo_EO.ISO8859-3',
  865.     'eo_xx':                                'eo_XX.ISO8859-3',
  866.     'eo_xx.iso88593':                       'eo_XX.ISO8859-3',
  867.     'es':                                   'es_ES.ISO8859-1',
  868.     'es_ar':                                'es_AR.ISO8859-1',
  869.     'es_ar.iso88591':                       'es_AR.ISO8859-1',
  870.     'es_bo':                                'es_BO.ISO8859-1',
  871.     'es_bo.iso88591':                       'es_BO.ISO8859-1',
  872.     'es_cl':                                'es_CL.ISO8859-1',
  873.     'es_cl.iso88591':                       'es_CL.ISO8859-1',
  874.     'es_co':                                'es_CO.ISO8859-1',
  875.     'es_co.iso88591':                       'es_CO.ISO8859-1',
  876.     'es_cr':                                'es_CR.ISO8859-1',
  877.     'es_cr.iso88591':                       'es_CR.ISO8859-1',
  878.     'es_do':                                'es_DO.ISO8859-1',
  879.     'es_do.iso88591':                       'es_DO.ISO8859-1',
  880.     'es_ec':                                'es_EC.ISO8859-1',
  881.     'es_ec.iso88591':                       'es_EC.ISO8859-1',
  882.     'es_es':                                'es_ES.ISO8859-1',
  883.     'es_es.88591':                          'es_ES.ISO8859-1',
  884.     'es_es.iso88591':                       'es_ES.ISO8859-1',
  885.     'es_es.iso885915':                      'es_ES.ISO8859-15',
  886.     'es_es.iso885915@euro':                 'es_ES.ISO8859-15',
  887.     'es_es.utf8@euro':                      'es_ES.UTF-8',
  888.     'es_es@euro':                           'es_ES.ISO8859-15',
  889.     'es_gt':                                'es_GT.ISO8859-1',
  890.     'es_gt.iso88591':                       'es_GT.ISO8859-1',
  891.     'es_hn':                                'es_HN.ISO8859-1',
  892.     'es_hn.iso88591':                       'es_HN.ISO8859-1',
  893.     'es_mx':                                'es_MX.ISO8859-1',
  894.     'es_mx.iso88591':                       'es_MX.ISO8859-1',
  895.     'es_ni':                                'es_NI.ISO8859-1',
  896.     'es_ni.iso88591':                       'es_NI.ISO8859-1',
  897.     'es_pa':                                'es_PA.ISO8859-1',
  898.     'es_pa.iso88591':                       'es_PA.ISO8859-1',
  899.     'es_pa.iso885915':                      'es_PA.ISO8859-15',
  900.     'es_pa@euro':                           'es_PA.ISO8859-15',
  901.     'es_pe':                                'es_PE.ISO8859-1',
  902.     'es_pe.iso88591':                       'es_PE.ISO8859-1',
  903.     'es_pe.iso885915':                      'es_PE.ISO8859-15',
  904.     'es_pe@euro':                           'es_PE.ISO8859-15',
  905.     'es_pr':                                'es_PR.ISO8859-1',
  906.     'es_pr.iso88591':                       'es_PR.ISO8859-1',
  907.     'es_py':                                'es_PY.ISO8859-1',
  908.     'es_py.iso88591':                       'es_PY.ISO8859-1',
  909.     'es_py.iso885915':                      'es_PY.ISO8859-15',
  910.     'es_py@euro':                           'es_PY.ISO8859-15',
  911.     'es_sv':                                'es_SV.ISO8859-1',
  912.     'es_sv.iso88591':                       'es_SV.ISO8859-1',
  913.     'es_sv.iso885915':                      'es_SV.ISO8859-15',
  914.     'es_sv@euro':                           'es_SV.ISO8859-15',
  915.     'es_us':                                'es_US.ISO8859-1',
  916.     'es_us.iso88591':                       'es_US.ISO8859-1',
  917.     'es_uy':                                'es_UY.ISO8859-1',
  918.     'es_uy.iso88591':                       'es_UY.ISO8859-1',
  919.     'es_uy.iso885915':                      'es_UY.ISO8859-15',
  920.     'es_uy@euro':                           'es_UY.ISO8859-15',
  921.     'es_ve':                                'es_VE.ISO8859-1',
  922.     'es_ve.iso88591':                       'es_VE.ISO8859-1',
  923.     'es_ve.iso885915':                      'es_VE.ISO8859-15',
  924.     'es_ve@euro':                           'es_VE.ISO8859-15',
  925.     'estonian':                             'et_EE.ISO8859-1',
  926.     'et':                                   'et_EE.ISO8859-15',
  927.     'et_ee':                                'et_EE.ISO8859-15',
  928.     'et_ee.iso88591':                       'et_EE.ISO8859-1',
  929.     'et_ee.iso885913':                      'et_EE.ISO8859-13',
  930.     'et_ee.iso885915':                      'et_EE.ISO8859-15',
  931.     'et_ee.iso88594':                       'et_EE.ISO8859-4',
  932.     'et_ee@euro':                           'et_EE.ISO8859-15',
  933.     'eu':                                   'eu_ES.ISO8859-1',
  934.     'eu_es':                                'eu_ES.ISO8859-1',
  935.     'eu_es.iso88591':                       'eu_ES.ISO8859-1',
  936.     'eu_es.iso885915':                      'eu_ES.ISO8859-15',
  937.     'eu_es.iso885915@euro':                 'eu_ES.ISO8859-15',
  938.     'eu_es.utf8@euro':                      'eu_ES.UTF-8',
  939.     'eu_es@euro':                           'eu_ES.ISO8859-15',
  940.     'fa':                                   'fa_IR.UTF-8',
  941.     'fa_ir':                                'fa_IR.UTF-8',
  942.     'fa_ir.isiri3342':                      'fa_IR.ISIRI-3342',
  943.     'fi':                                   'fi_FI.ISO8859-15',
  944.     'fi_fi':                                'fi_FI.ISO8859-15',
  945.     'fi_fi.88591':                          'fi_FI.ISO8859-1',
  946.     'fi_fi.iso88591':                       'fi_FI.ISO8859-1',
  947.     'fi_fi.iso885915':                      'fi_FI.ISO8859-15',
  948.     'fi_fi.iso885915@euro':                 'fi_FI.ISO8859-15',
  949.     'fi_fi.utf8@euro':                      'fi_FI.UTF-8',
  950.     'fi_fi@euro':                           'fi_FI.ISO8859-15',
  951.     'finnish':                              'fi_FI.ISO8859-1',
  952.     'finnish.iso88591':                     'fi_FI.ISO8859-1',
  953.     'fo':                                   'fo_FO.ISO8859-1',
  954.     'fo_fo':                                'fo_FO.ISO8859-1',
  955.     'fo_fo.iso88591':                       'fo_FO.ISO8859-1',
  956.     'fo_fo.iso885915':                      'fo_FO.ISO8859-15',
  957.     'fo_fo@euro':                           'fo_FO.ISO8859-15',
  958.     'fr':                                   'fr_FR.ISO8859-1',
  959.     'fr_be':                                'fr_BE.ISO8859-1',
  960.     'fr_be.88591':                          'fr_BE.ISO8859-1',
  961.     'fr_be.iso88591':                       'fr_BE.ISO8859-1',
  962.     'fr_be.iso885915':                      'fr_BE.ISO8859-15',
  963.     'fr_be.iso885915@euro':                 'fr_BE.ISO8859-15',
  964.     'fr_be.utf8@euro':                      'fr_BE.UTF-8',
  965.     'fr_be@euro':                           'fr_BE.ISO8859-15',
  966.     'fr_ca':                                'fr_CA.ISO8859-1',
  967.     'fr_ca.88591':                          'fr_CA.ISO8859-1',
  968.     'fr_ca.iso88591':                       'fr_CA.ISO8859-1',
  969.     'fr_ca.iso885915':                      'fr_CA.ISO8859-15',
  970.     'fr_ca@euro':                           'fr_CA.ISO8859-15',
  971.     'fr_ch':                                'fr_CH.ISO8859-1',
  972.     'fr_ch.88591':                          'fr_CH.ISO8859-1',
  973.     'fr_ch.iso88591':                       'fr_CH.ISO8859-1',
  974.     'fr_ch.iso885915':                      'fr_CH.ISO8859-15',
  975.     'fr_ch@euro':                           'fr_CH.ISO8859-15',
  976.     'fr_fr':                                'fr_FR.ISO8859-1',
  977.     'fr_fr.88591':                          'fr_FR.ISO8859-1',
  978.     'fr_fr.iso88591':                       'fr_FR.ISO8859-1',
  979.     'fr_fr.iso885915':                      'fr_FR.ISO8859-15',
  980.     'fr_fr.iso885915@euro':                 'fr_FR.ISO8859-15',
  981.     'fr_fr.utf8@euro':                      'fr_FR.UTF-8',
  982.     'fr_fr@euro':                           'fr_FR.ISO8859-15',
  983.     'fr_lu':                                'fr_LU.ISO8859-1',
  984.     'fr_lu.88591':                          'fr_LU.ISO8859-1',
  985.     'fr_lu.iso88591':                       'fr_LU.ISO8859-1',
  986.     'fr_lu.iso885915':                      'fr_LU.ISO8859-15',
  987.     'fr_lu.iso885915@euro':                 'fr_LU.ISO8859-15',
  988.     'fr_lu.utf8@euro':                      'fr_LU.UTF-8',
  989.     'fr_lu@euro':                           'fr_LU.ISO8859-15',
  990.     'fran\xe7ais':                          'fr_FR.ISO8859-1',
  991.     'fran\xef\xbf\xbdis':                   'fr_FR.ISO8859-1',
  992.     'fre_fr':                               'fr_FR.ISO8859-1',
  993.     'fre_fr.8859':                          'fr_FR.ISO8859-1',
  994.     'french':                               'fr_FR.ISO8859-1',
  995.     'french.iso88591':                      'fr_CH.ISO8859-1',
  996.     'french_france':                        'fr_FR.ISO8859-1',
  997.     'french_france.8859':                   'fr_FR.ISO8859-1',
  998.     'ga':                                   'ga_IE.ISO8859-1',
  999.     'ga_ie':                                'ga_IE.ISO8859-1',
  1000.     'ga_ie.iso88591':                       'ga_IE.ISO8859-1',
  1001.     'ga_ie.iso885914':                      'ga_IE.ISO8859-14',
  1002.     'ga_ie.iso885915':                      'ga_IE.ISO8859-15',
  1003.     'ga_ie.iso885915@euro':                 'ga_IE.ISO8859-15',
  1004.     'ga_ie.utf8@euro':                      'ga_IE.UTF-8',
  1005.     'ga_ie@euro':                           'ga_IE.ISO8859-15',
  1006.     'galego':                               'gl_ES.ISO8859-1',
  1007.     'galician':                             'gl_ES.ISO8859-1',
  1008.     'gd':                                   'gd_GB.ISO8859-1',
  1009.     'gd_gb':                                'gd_GB.ISO8859-1',
  1010.     'gd_gb.iso88591':                       'gd_GB.ISO8859-1',
  1011.     'gd_gb.iso885914':                      'gd_GB.ISO8859-14',
  1012.     'gd_gb.iso885915':                      'gd_GB.ISO8859-15',
  1013.     'gd_gb@euro':                           'gd_GB.ISO8859-15',
  1014.     'ger_de':                               'de_DE.ISO8859-1',
  1015.     'ger_de.8859':                          'de_DE.ISO8859-1',
  1016.     'german':                               'de_DE.ISO8859-1',
  1017.     'german.iso88591':                      'de_CH.ISO8859-1',
  1018.     'german_germany':                       'de_DE.ISO8859-1',
  1019.     'german_germany.8859':                  'de_DE.ISO8859-1',
  1020.     'gl':                                   'gl_ES.ISO8859-1',
  1021.     'gl_es':                                'gl_ES.ISO8859-1',
  1022.     'gl_es.iso88591':                       'gl_ES.ISO8859-1',
  1023.     'gl_es.iso885915':                      'gl_ES.ISO8859-15',
  1024.     'gl_es.iso885915@euro':                 'gl_ES.ISO8859-15',
  1025.     'gl_es.utf8@euro':                      'gl_ES.UTF-8',
  1026.     'gl_es@euro':                           'gl_ES.ISO8859-15',
  1027.     'greek':                                'el_GR.ISO8859-7',
  1028.     'greek.iso88597':                       'el_GR.ISO8859-7',
  1029.     'gv':                                   'gv_GB.ISO8859-1',
  1030.     'gv_gb':                                'gv_GB.ISO8859-1',
  1031.     'gv_gb.iso88591':                       'gv_GB.ISO8859-1',
  1032.     'gv_gb.iso885914':                      'gv_GB.ISO8859-14',
  1033.     'gv_gb.iso885915':                      'gv_GB.ISO8859-15',
  1034.     'gv_gb@euro':                           'gv_GB.ISO8859-15',
  1035.     'he':                                   'he_IL.ISO8859-8',
  1036.     'he_il':                                'he_IL.ISO8859-8',
  1037.     'he_il.cp1255':                         'he_IL.CP1255',
  1038.     'he_il.iso88598':                       'he_IL.ISO8859-8',
  1039.     'he_il.microsoftcp1255':                'he_IL.CP1255',
  1040.     'hebrew':                               'he_IL.ISO8859-8',
  1041.     'hebrew.iso88598':                      'he_IL.ISO8859-8',
  1042.     'hi':                                   'hi_IN.ISCII-DEV',
  1043.     'hi_in':                                'hi_IN.ISCII-DEV',
  1044.     'hi_in.isciidev':                       'hi_IN.ISCII-DEV',
  1045.     'hr':                                   'hr_HR.ISO8859-2',
  1046.     'hr_hr':                                'hr_HR.ISO8859-2',
  1047.     'hr_hr.iso88592':                       'hr_HR.ISO8859-2',
  1048.     'hrvatski':                             'hr_HR.ISO8859-2',
  1049.     'hu':                                   'hu_HU.ISO8859-2',
  1050.     'hu_hu':                                'hu_HU.ISO8859-2',
  1051.     'hu_hu.iso88592':                       'hu_HU.ISO8859-2',
  1052.     'hungarian':                            'hu_HU.ISO8859-2',
  1053.     'icelandic':                            'is_IS.ISO8859-1',
  1054.     'icelandic.iso88591':                   'is_IS.ISO8859-1',
  1055.     'id':                                   'id_ID.ISO8859-1',
  1056.     'id_id':                                'id_ID.ISO8859-1',
  1057.     'in':                                   'id_ID.ISO8859-1',
  1058.     'in_id':                                'id_ID.ISO8859-1',
  1059.     'is':                                   'is_IS.ISO8859-1',
  1060.     'is_is':                                'is_IS.ISO8859-1',
  1061.     'is_is.iso88591':                       'is_IS.ISO8859-1',
  1062.     'is_is.iso885915':                      'is_IS.ISO8859-15',
  1063.     'is_is@euro':                           'is_IS.ISO8859-15',
  1064.     'iso-8859-1':                           'en_US.ISO8859-1',
  1065.     'iso-8859-15':                          'en_US.ISO8859-15',
  1066.     'iso8859-1':                            'en_US.ISO8859-1',
  1067.     'iso8859-15':                           'en_US.ISO8859-15',
  1068.     'iso_8859_1':                           'en_US.ISO8859-1',
  1069.     'iso_8859_15':                          'en_US.ISO8859-15',
  1070.     'it':                                   'it_IT.ISO8859-1',
  1071.     'it_ch':                                'it_CH.ISO8859-1',
  1072.     'it_ch.iso88591':                       'it_CH.ISO8859-1',
  1073.     'it_ch.iso885915':                      'it_CH.ISO8859-15',
  1074.     'it_ch@euro':                           'it_CH.ISO8859-15',
  1075.     'it_it':                                'it_IT.ISO8859-1',
  1076.     'it_it.88591':                          'it_IT.ISO8859-1',
  1077.     'it_it.iso88591':                       'it_IT.ISO8859-1',
  1078.     'it_it.iso885915':                      'it_IT.ISO8859-15',
  1079.     'it_it.iso885915@euro':                 'it_IT.ISO8859-15',
  1080.     'it_it.utf8@euro':                      'it_IT.UTF-8',
  1081.     'it_it@euro':                           'it_IT.ISO8859-15',
  1082.     'italian':                              'it_IT.ISO8859-1',
  1083.     'italian.iso88591':                     'it_IT.ISO8859-1',
  1084.     'iu':                                   'iu_CA.NUNACOM-8',
  1085.     'iu_ca':                                'iu_CA.NUNACOM-8',
  1086.     'iu_ca.nunacom8':                       'iu_CA.NUNACOM-8',
  1087.     'iw':                                   'he_IL.ISO8859-8',
  1088.     'iw_il':                                'he_IL.ISO8859-8',
  1089.     'iw_il.iso88598':                       'he_IL.ISO8859-8',
  1090.     'ja':                                   'ja_JP.eucJP',
  1091.     'ja.jis':                               'ja_JP.JIS7',
  1092.     'ja.sjis':                              'ja_JP.SJIS',
  1093.     'ja_jp':                                'ja_JP.eucJP',
  1094.     'ja_jp.ajec':                           'ja_JP.eucJP',
  1095.     'ja_jp.euc':                            'ja_JP.eucJP',
  1096.     'ja_jp.eucjp':                          'ja_JP.eucJP',
  1097.     'ja_jp.iso-2022-jp':                    'ja_JP.JIS7',
  1098.     'ja_jp.iso2022jp':                      'ja_JP.JIS7',
  1099.     'ja_jp.jis':                            'ja_JP.JIS7',
  1100.     'ja_jp.jis7':                           'ja_JP.JIS7',
  1101.     'ja_jp.mscode':                         'ja_JP.SJIS',
  1102.     'ja_jp.sjis':                           'ja_JP.SJIS',
  1103.     'ja_jp.ujis':                           'ja_JP.eucJP',
  1104.     'japan':                                'ja_JP.eucJP',
  1105.     'japanese':                             'ja_JP.eucJP',
  1106.     'japanese-euc':                         'ja_JP.eucJP',
  1107.     'japanese.euc':                         'ja_JP.eucJP',
  1108.     'japanese.sjis':                        'ja_JP.SJIS',
  1109.     'jp_jp':                                'ja_JP.eucJP',
  1110.     'ka':                                   'ka_GE.GEORGIAN-ACADEMY',
  1111.     'ka_ge':                                'ka_GE.GEORGIAN-ACADEMY',
  1112.     'ka_ge.georgianacademy':                'ka_GE.GEORGIAN-ACADEMY',
  1113.     'ka_ge.georgianps':                     'ka_GE.GEORGIAN-PS',
  1114.     'ka_ge.georgianrs':                     'ka_GE.GEORGIAN-ACADEMY',
  1115.     'kl':                                   'kl_GL.ISO8859-1',
  1116.     'kl_gl':                                'kl_GL.ISO8859-1',
  1117.     'kl_gl.iso88591':                       'kl_GL.ISO8859-1',
  1118.     'kl_gl.iso885915':                      'kl_GL.ISO8859-15',
  1119.     'kl_gl@euro':                           'kl_GL.ISO8859-15',
  1120.     'km':                                   'km_KH.UTF-8',
  1121.     'km_kh':                                'km_KH.UTF-8',
  1122.     'kn':                                   'kn_IN.UTF-8',
  1123.     'ko':                                   'ko_KR.eucKR',
  1124.     'ko_kr':                                'ko_KR.eucKR',
  1125.     'ko_kr.euc':                            'ko_KR.eucKR',
  1126.     'ko_kr.euckr':                          'ko_KR.eucKR',
  1127.     'korean':                               'ko_KR.eucKR',
  1128.     'korean.euc':                           'ko_KR.eucKR',
  1129.     'kw':                                   'kw_GB.ISO8859-1',
  1130.     'kw_gb':                                'kw_GB.ISO8859-1',
  1131.     'kw_gb.iso88591':                       'kw_GB.ISO8859-1',
  1132.     'kw_gb.iso885914':                      'kw_GB.ISO8859-14',
  1133.     'kw_gb.iso885915':                      'kw_GB.ISO8859-15',
  1134.     'kw_gb@euro':                           'kw_GB.ISO8859-15',
  1135.     'ky':                                   'ky_KG.UTF-8',
  1136.     'ky_kg':                                'ky_KG.UTF-8',
  1137.     'lithuanian':                           'lt_LT.ISO8859-13',
  1138.     'lo':                                   'lo_LA.MULELAO-1',
  1139.     'lo_la':                                'lo_LA.MULELAO-1',
  1140.     'lo_la.cp1133':                         'lo_LA.IBM-CP1133',
  1141.     'lo_la.ibmcp1133':                      'lo_LA.IBM-CP1133',
  1142.     'lo_la.mulelao1':                       'lo_LA.MULELAO-1',
  1143.     'lt':                                   'lt_LT.ISO8859-13',
  1144.     'lt_lt':                                'lt_LT.ISO8859-13',
  1145.     'lt_lt.iso885913':                      'lt_LT.ISO8859-13',
  1146.     'lt_lt.iso88594':                       'lt_LT.ISO8859-4',
  1147.     'lv':                                   'lv_LV.ISO8859-13',
  1148.     'lv_lv':                                'lv_LV.ISO8859-13',
  1149.     'lv_lv.iso885913':                      'lv_LV.ISO8859-13',
  1150.     'lv_lv.iso88594':                       'lv_LV.ISO8859-4',
  1151.     'mi':                                   'mi_NZ.ISO8859-1',
  1152.     'mi_nz':                                'mi_NZ.ISO8859-1',
  1153.     'mi_nz.iso88591':                       'mi_NZ.ISO8859-1',
  1154.     'mk':                                   'mk_MK.ISO8859-5',
  1155.     'mk_mk':                                'mk_MK.ISO8859-5',
  1156.     'mk_mk.cp1251':                         'mk_MK.CP1251',
  1157.     'mk_mk.iso88595':                       'mk_MK.ISO8859-5',
  1158.     'mk_mk.microsoftcp1251':                'mk_MK.CP1251',
  1159.     'ml':                                   'ml_IN.UTF-8',
  1160.     'mr_in':                                'mr_IN.UTF-8',
  1161.     'ms':                                   'ms_MY.ISO8859-1',
  1162.     'ms_my':                                'ms_MY.ISO8859-1',
  1163.     'ms_my.iso88591':                       'ms_MY.ISO8859-1',
  1164.     'mt':                                   'mt_MT.ISO8859-3',
  1165.     'mt_mt':                                'mt_MT.ISO8859-3',
  1166.     'mt_mt.iso88593':                       'mt_MT.ISO8859-3',
  1167.     'nb':                                   'nb_NO.ISO8859-1',
  1168.     'nb_no':                                'nb_NO.ISO8859-1',
  1169.     'nb_no.88591':                          'nb_NO.ISO8859-1',
  1170.     'nb_no.iso88591':                       'nb_NO.ISO8859-1',
  1171.     'nb_no.iso885915':                      'nb_NO.ISO8859-15',
  1172.     'nb_no@euro':                           'nb_NO.ISO8859-15',
  1173.     'nl':                                   'nl_NL.ISO8859-1',
  1174.     'nl_be':                                'nl_BE.ISO8859-1',
  1175.     'nl_be.88591':                          'nl_BE.ISO8859-1',
  1176.     'nl_be.iso88591':                       'nl_BE.ISO8859-1',
  1177.     'nl_be.iso885915':                      'nl_BE.ISO8859-15',
  1178.     'nl_be.iso885915@euro':                 'nl_BE.ISO8859-15',
  1179.     'nl_be.utf8@euro':                      'nl_BE.UTF-8',
  1180.     'nl_be@euro':                           'nl_BE.ISO8859-15',
  1181.     'nl_nl':                                'nl_NL.ISO8859-1',
  1182.     'nl_nl.88591':                          'nl_NL.ISO8859-1',
  1183.     'nl_nl.iso88591':                       'nl_NL.ISO8859-1',
  1184.     'nl_nl.iso885915':                      'nl_NL.ISO8859-15',
  1185.     'nl_nl.iso885915@euro':                 'nl_NL.ISO8859-15',
  1186.     'nl_nl.utf8@euro':                      'nl_NL.UTF-8',
  1187.     'nl_nl@euro':                           'nl_NL.ISO8859-15',
  1188.     'nn':                                   'nn_NO.ISO8859-1',
  1189.     'nn_no':                                'nn_NO.ISO8859-1',
  1190.     'nn_no.88591':                          'nn_NO.ISO8859-1',
  1191.     'nn_no.iso88591':                       'nn_NO.ISO8859-1',
  1192.     'nn_no.iso885915':                      'nn_NO.ISO8859-15',
  1193.     'nn_no@euro':                           'nn_NO.ISO8859-15',
  1194.     'no':                                   'no_NO.ISO8859-1',
  1195.     'no@nynorsk':                           'ny_NO.ISO8859-1',
  1196.     'no_no':                                'no_NO.ISO8859-1',
  1197.     'no_no.88591':                          'no_NO.ISO8859-1',
  1198.     'no_no.iso88591':                       'no_NO.ISO8859-1',
  1199.     'no_no.iso885915':                      'no_NO.ISO8859-15',
  1200.     'no_no@euro':                           'no_NO.ISO8859-15',
  1201.     'norwegian':                            'no_NO.ISO8859-1',
  1202.     'norwegian.iso88591':                   'no_NO.ISO8859-1',
  1203.     'nr':                                   'nr_ZA.ISO8859-1',
  1204.     'nr_za':                                'nr_ZA.ISO8859-1',
  1205.     'nr_za.iso88591':                       'nr_ZA.ISO8859-1',
  1206.     'nso':                                  'nso_ZA.ISO8859-15',
  1207.     'nso_za':                               'nso_ZA.ISO8859-15',
  1208.     'nso_za.iso885915':                     'nso_ZA.ISO8859-15',
  1209.     'ny':                                   'ny_NO.ISO8859-1',
  1210.     'ny_no':                                'ny_NO.ISO8859-1',
  1211.     'ny_no.88591':                          'ny_NO.ISO8859-1',
  1212.     'ny_no.iso88591':                       'ny_NO.ISO8859-1',
  1213.     'ny_no.iso885915':                      'ny_NO.ISO8859-15',
  1214.     'ny_no@euro':                           'ny_NO.ISO8859-15',
  1215.     'nynorsk':                              'nn_NO.ISO8859-1',
  1216.     'oc':                                   'oc_FR.ISO8859-1',
  1217.     'oc_fr':                                'oc_FR.ISO8859-1',
  1218.     'oc_fr.iso88591':                       'oc_FR.ISO8859-1',
  1219.     'oc_fr.iso885915':                      'oc_FR.ISO8859-15',
  1220.     'oc_fr@euro':                           'oc_FR.ISO8859-15',
  1221.     'or':                                   'or_IN.UTF-8',
  1222.     'pd':                                   'pd_US.ISO8859-1',
  1223.     'pd_de':                                'pd_DE.ISO8859-1',
  1224.     'pd_de.iso88591':                       'pd_DE.ISO8859-1',
  1225.     'pd_de.iso885915':                      'pd_DE.ISO8859-15',
  1226.     'pd_de@euro':                           'pd_DE.ISO8859-15',
  1227.     'pd_us':                                'pd_US.ISO8859-1',
  1228.     'pd_us.iso88591':                       'pd_US.ISO8859-1',
  1229.     'pd_us.iso885915':                      'pd_US.ISO8859-15',
  1230.     'pd_us@euro':                           'pd_US.ISO8859-15',
  1231.     'ph':                                   'ph_PH.ISO8859-1',
  1232.     'ph_ph':                                'ph_PH.ISO8859-1',
  1233.     'ph_ph.iso88591':                       'ph_PH.ISO8859-1',
  1234.     'pl':                                   'pl_PL.ISO8859-2',
  1235.     'pl_pl':                                'pl_PL.ISO8859-2',
  1236.     'pl_pl.iso88592':                       'pl_PL.ISO8859-2',
  1237.     'polish':                               'pl_PL.ISO8859-2',
  1238.     'portuguese':                           'pt_PT.ISO8859-1',
  1239.     'portuguese.iso88591':                  'pt_PT.ISO8859-1',
  1240.     'portuguese_brazil':                    'pt_BR.ISO8859-1',
  1241.     'portuguese_brazil.8859':               'pt_BR.ISO8859-1',
  1242.     'posix':                                'C',
  1243.     'posix-utf2':                           'C',
  1244.     'pp':                                   'pp_AN.ISO8859-1',
  1245.     'pp_an':                                'pp_AN.ISO8859-1',
  1246.     'pp_an.iso88591':                       'pp_AN.ISO8859-1',
  1247.     'pt':                                   'pt_PT.ISO8859-1',
  1248.     'pt_br':                                'pt_BR.ISO8859-1',
  1249.     'pt_br.88591':                          'pt_BR.ISO8859-1',
  1250.     'pt_br.iso88591':                       'pt_BR.ISO8859-1',
  1251.     'pt_br.iso885915':                      'pt_BR.ISO8859-15',
  1252.     'pt_br@euro':                           'pt_BR.ISO8859-15',
  1253.     'pt_pt':                                'pt_PT.ISO8859-1',
  1254.     'pt_pt.88591':                          'pt_PT.ISO8859-1',
  1255.     'pt_pt.iso88591':                       'pt_PT.ISO8859-1',
  1256.     'pt_pt.iso885915':                      'pt_PT.ISO8859-15',
  1257.     'pt_pt.iso885915@euro':                 'pt_PT.ISO8859-15',
  1258.     'pt_pt.utf8@euro':                      'pt_PT.UTF-8',
  1259.     'pt_pt@euro':                           'pt_PT.ISO8859-15',
  1260.     'ro':                                   'ro_RO.ISO8859-2',
  1261.     'ro_ro':                                'ro_RO.ISO8859-2',
  1262.     'ro_ro.iso88592':                       'ro_RO.ISO8859-2',
  1263.     'romanian':                             'ro_RO.ISO8859-2',
  1264.     'ru':                                   'ru_RU.UTF-8',
  1265.     'ru_ru':                                'ru_RU.UTF-8',
  1266.     'ru_ru.cp1251':                         'ru_RU.CP1251',
  1267.     'ru_ru.iso88595':                       'ru_RU.ISO8859-5',
  1268.     'ru_ru.koi8r':                          'ru_RU.KOI8-R',
  1269.     'ru_ru.microsoftcp1251':                'ru_RU.CP1251',
  1270.     'ru_ua':                                'ru_UA.KOI8-U',
  1271.     'ru_ua.cp1251':                         'ru_UA.CP1251',
  1272.     'ru_ua.koi8u':                          'ru_UA.KOI8-U',
  1273.     'ru_ua.microsoftcp1251':                'ru_UA.CP1251',
  1274.     'rumanian':                             'ro_RO.ISO8859-2',
  1275.     'russian':                              'ru_RU.KOI8-R',
  1276.     'rw':                                   'rw_RW.ISO8859-1',
  1277.     'rw_rw':                                'rw_RW.ISO8859-1',
  1278.     'rw_rw.iso88591':                       'rw_RW.ISO8859-1',
  1279.     'se_no':                                'se_NO.UTF-8',
  1280.     'serbocroatian':                        'sr_CS.ISO8859-2',
  1281.     'sh':                                   'sr_CS.ISO8859-2',
  1282.     'sh_hr':                                'sh_HR.ISO8859-2',
  1283.     'sh_hr.iso88592':                       'sh_HR.ISO8859-2',
  1284.     'sh_sp':                                'sr_CS.ISO8859-2',
  1285.     'sh_yu':                                'sr_CS.ISO8859-2',
  1286.     'si':                                   'si_LK.UTF-8',
  1287.     'si_lk':                                'si_LK.UTF-8',
  1288.     'sid_et':                               'sid_ET.UTF-8',
  1289.     'sinhala':                              'si_LK.UTF-8',
  1290.     'sk':                                   'sk_SK.ISO8859-2',
  1291.     'sk_sk':                                'sk_SK.ISO8859-2',
  1292.     'sk_sk.iso88592':                       'sk_SK.ISO8859-2',
  1293.     'sl':                                   'sl_SI.ISO8859-2',
  1294.     'sl_cs':                                'sl_CS.ISO8859-2',
  1295.     'sl_si':                                'sl_SI.ISO8859-2',
  1296.     'sl_si.iso88592':                       'sl_SI.ISO8859-2',
  1297.     'slovak':                               'sk_SK.ISO8859-2',
  1298.     'slovene':                              'sl_SI.ISO8859-2',
  1299.     'slovenian':                            'sl_SI.ISO8859-2',
  1300.     'sp':                                   'sr_CS.ISO8859-5',
  1301.     'sp_yu':                                'sr_CS.ISO8859-5',
  1302.     'spanish':                              'es_ES.ISO8859-1',
  1303.     'spanish.iso88591':                     'es_ES.ISO8859-1',
  1304.     'spanish_spain':                        'es_ES.ISO8859-1',
  1305.     'spanish_spain.8859':                   'es_ES.ISO8859-1',
  1306.     'sq':                                   'sq_AL.ISO8859-2',
  1307.     'sq_al':                                'sq_AL.ISO8859-2',
  1308.     'sq_al.iso88592':                       'sq_AL.ISO8859-2',
  1309.     'sr':                                   'sr_CS.ISO8859-5',
  1310.     'sr@cyrillic':                          'sr_CS.ISO8859-5',
  1311.     'sr@latn':                              'sr_CS.ISO8859-2',
  1312.     'sr_cs.iso88592':                       'sr_CS.ISO8859-2',
  1313.     'sr_cs.iso88592@latn':                  'sr_CS.ISO8859-2',
  1314.     'sr_cs.iso88595':                       'sr_CS.ISO8859-5',
  1315.     'sr_cs.utf8@latn':                      'sr_CS.UTF-8',
  1316.     'sr_cs@latn':                           'sr_CS.ISO8859-2',
  1317.     'sr_sp':                                'sr_CS.ISO8859-2',
  1318.     'sr_yu':                                'sr_CS.ISO8859-5',
  1319.     'sr_yu.cp1251@cyrillic':                'sr_CS.CP1251',
  1320.     'sr_yu.iso88592':                       'sr_CS.ISO8859-2',
  1321.     'sr_yu.iso88595':                       'sr_CS.ISO8859-5',
  1322.     'sr_yu.iso88595@cyrillic':              'sr_CS.ISO8859-5',
  1323.     'sr_yu.microsoftcp1251@cyrillic':       'sr_CS.CP1251',
  1324.     'sr_yu.utf8@cyrillic':                  'sr_CS.UTF-8',
  1325.     'sr_yu@cyrillic':                       'sr_CS.ISO8859-5',
  1326.     'ss':                                   'ss_ZA.ISO8859-1',
  1327.     'ss_za':                                'ss_ZA.ISO8859-1',
  1328.     'ss_za.iso88591':                       'ss_ZA.ISO8859-1',
  1329.     'st':                                   'st_ZA.ISO8859-1',
  1330.     'st_za':                                'st_ZA.ISO8859-1',
  1331.     'st_za.iso88591':                       'st_ZA.ISO8859-1',
  1332.     'sv':                                   'sv_SE.ISO8859-1',
  1333.     'sv_fi':                                'sv_FI.ISO8859-1',
  1334.     'sv_fi.iso88591':                       'sv_FI.ISO8859-1',
  1335.     'sv_fi.iso885915':                      'sv_FI.ISO8859-15',
  1336.     'sv_fi.iso885915@euro':                 'sv_FI.ISO8859-15',
  1337.     'sv_fi.utf8@euro':                      'sv_FI.UTF-8',
  1338.     'sv_fi@euro':                           'sv_FI.ISO8859-15',
  1339.     'sv_se':                                'sv_SE.ISO8859-1',
  1340.     'sv_se.88591':                          'sv_SE.ISO8859-1',
  1341.     'sv_se.iso88591':                       'sv_SE.ISO8859-1',
  1342.     'sv_se.iso885915':                      'sv_SE.ISO8859-15',
  1343.     'sv_se@euro':                           'sv_SE.ISO8859-15',
  1344.     'swedish':                              'sv_SE.ISO8859-1',
  1345.     'swedish.iso88591':                     'sv_SE.ISO8859-1',
  1346.     'ta':                                   'ta_IN.TSCII-0',
  1347.     'ta_in':                                'ta_IN.TSCII-0',
  1348.     'ta_in.tscii':                          'ta_IN.TSCII-0',
  1349.     'ta_in.tscii0':                         'ta_IN.TSCII-0',
  1350.     'te':                                   'te_IN.UTF-8',
  1351.     'tg':                                   'tg_TJ.KOI8-C',
  1352.     'tg_tj':                                'tg_TJ.KOI8-C',
  1353.     'tg_tj.koi8c':                          'tg_TJ.KOI8-C',
  1354.     'th':                                   'th_TH.ISO8859-11',
  1355.     'th_th':                                'th_TH.ISO8859-11',
  1356.     'th_th.iso885911':                      'th_TH.ISO8859-11',
  1357.     'th_th.tactis':                         'th_TH.TIS620',
  1358.     'th_th.tis620':                         'th_TH.TIS620',
  1359.     'thai':                                 'th_TH.ISO8859-11',
  1360.     'tl':                                   'tl_PH.ISO8859-1',
  1361.     'tl_ph':                                'tl_PH.ISO8859-1',
  1362.     'tl_ph.iso88591':                       'tl_PH.ISO8859-1',
  1363.     'tn':                                   'tn_ZA.ISO8859-15',
  1364.     'tn_za':                                'tn_ZA.ISO8859-15',
  1365.     'tn_za.iso885915':                      'tn_ZA.ISO8859-15',
  1366.     'tr':                                   'tr_TR.ISO8859-9',
  1367.     'tr_tr':                                'tr_TR.ISO8859-9',
  1368.     'tr_tr.iso88599':                       'tr_TR.ISO8859-9',
  1369.     'ts':                                   'ts_ZA.ISO8859-1',
  1370.     'ts_za':                                'ts_ZA.ISO8859-1',
  1371.     'ts_za.iso88591':                       'ts_ZA.ISO8859-1',
  1372.     'tt':                                   'tt_RU.TATAR-CYR',
  1373.     'tt_ru':                                'tt_RU.TATAR-CYR',
  1374.     'tt_ru.koi8c':                          'tt_RU.KOI8-C',
  1375.     'tt_ru.tatarcyr':                       'tt_RU.TATAR-CYR',
  1376.     'turkish':                              'tr_TR.ISO8859-9',
  1377.     'turkish.iso88599':                     'tr_TR.ISO8859-9',
  1378.     'uk':                                   'uk_UA.KOI8-U',
  1379.     'uk_ua':                                'uk_UA.KOI8-U',
  1380.     'uk_ua.cp1251':                         'uk_UA.CP1251',
  1381.     'uk_ua.iso88595':                       'uk_UA.ISO8859-5',
  1382.     'uk_ua.koi8u':                          'uk_UA.KOI8-U',
  1383.     'uk_ua.microsoftcp1251':                'uk_UA.CP1251',
  1384.     'univ':                                 'en_US.UTF-8',
  1385.     'universal':                            'en_US.UTF-8',
  1386.     'universal.utf8@ucs4':                  'en_US.UTF-8',
  1387.     'ur':                                   'ur_PK.CP1256',
  1388.     'ur_pk':                                'ur_PK.CP1256',
  1389.     'ur_pk.cp1256':                         'ur_PK.CP1256',
  1390.     'ur_pk.microsoftcp1256':                'ur_PK.CP1256',
  1391.     'uz':                                   'uz_UZ.UTF-8',
  1392.     'uz_uz':                                'uz_UZ.UTF-8',
  1393.     'uz_uz.iso88591':                       'uz_UZ.ISO8859-1',
  1394.     'uz_uz.utf8@cyrillic':                  'uz_UZ.UTF-8',
  1395.     'uz_uz@cyrillic':                       'uz_UZ.UTF-8',
  1396.     've':                                   've_ZA.UTF-8',
  1397.     've_za':                                've_ZA.UTF-8',
  1398.     'vi':                                   'vi_VN.TCVN',
  1399.     'vi_vn':                                'vi_VN.TCVN',
  1400.     'vi_vn.tcvn':                           'vi_VN.TCVN',
  1401.     'vi_vn.tcvn5712':                       'vi_VN.TCVN',
  1402.     'vi_vn.viscii':                         'vi_VN.VISCII',
  1403.     'vi_vn.viscii111':                      'vi_VN.VISCII',
  1404.     'wa':                                   'wa_BE.ISO8859-1',
  1405.     'wa_be':                                'wa_BE.ISO8859-1',
  1406.     'wa_be.iso88591':                       'wa_BE.ISO8859-1',
  1407.     'wa_be.iso885915':                      'wa_BE.ISO8859-15',
  1408.     'wa_be.iso885915@euro':                 'wa_BE.ISO8859-15',
  1409.     'wa_be@euro':                           'wa_BE.ISO8859-15',
  1410.     'xh':                                   'xh_ZA.ISO8859-1',
  1411.     'xh_za':                                'xh_ZA.ISO8859-1',
  1412.     'xh_za.iso88591':                       'xh_ZA.ISO8859-1',
  1413.     'yi':                                   'yi_US.CP1255',
  1414.     'yi_us':                                'yi_US.CP1255',
  1415.     'yi_us.cp1255':                         'yi_US.CP1255',
  1416.     'yi_us.microsoftcp1255':                'yi_US.CP1255',
  1417.     'zh':                                   'zh_CN.eucCN',
  1418.     'zh_cn':                                'zh_CN.gb2312',
  1419.     'zh_cn.big5':                           'zh_TW.big5',
  1420.     'zh_cn.euc':                            'zh_CN.eucCN',
  1421.     'zh_cn.gb18030':                        'zh_CN.gb18030',
  1422.     'zh_cn.gb2312':                         'zh_CN.gb2312',
  1423.     'zh_cn.gbk':                            'zh_CN.gbk',
  1424.     'zh_hk':                                'zh_HK.big5hkscs',
  1425.     'zh_hk.big5':                           'zh_HK.big5',
  1426.     'zh_hk.big5hkscs':                      'zh_HK.big5hkscs',
  1427.     'zh_tw':                                'zh_TW.big5',
  1428.     'zh_tw.big5':                           'zh_TW.big5',
  1429.     'zh_tw.euc':                            'zh_TW.eucTW',
  1430.     'zh_tw.euctw':                          'zh_TW.eucTW',
  1431.     'zu':                                   'zu_ZA.ISO8859-1',
  1432.     'zu_za':                                'zu_ZA.ISO8859-1',
  1433.     'zu_za.iso88591':                       'zu_ZA.ISO8859-1',
  1434. }
  1435.  
  1436. #
  1437. # This maps Windows language identifiers to locale strings.
  1438. #
  1439. # This list has been updated from
  1440. # http://msdn.microsoft.com/library/default.asp?url=/library/en-us/intl/nls_238z.asp
  1441. # to include every locale up to Windows XP.
  1442. #
  1443. # NOTE: this mapping is incomplete.  If your language is missing, please
  1444. # submit a bug report to Python bug manager, which you can find via:
  1445. #     http://www.python.org/dev/
  1446. # Make sure you include the missing language identifier and the suggested
  1447. # locale code.
  1448. #
  1449.  
  1450. windows_locale = {
  1451.     0x0436: "af_ZA", # Afrikaans
  1452.     0x041c: "sq_AL", # Albanian
  1453.     0x0401: "ar_SA", # Arabic - Saudi Arabia
  1454.     0x0801: "ar_IQ", # Arabic - Iraq
  1455.     0x0c01: "ar_EG", # Arabic - Egypt
  1456.     0x1001: "ar_LY", # Arabic - Libya
  1457.     0x1401: "ar_DZ", # Arabic - Algeria
  1458.     0x1801: "ar_MA", # Arabic - Morocco
  1459.     0x1c01: "ar_TN", # Arabic - Tunisia
  1460.     0x2001: "ar_OM", # Arabic - Oman
  1461.     0x2401: "ar_YE", # Arabic - Yemen
  1462.     0x2801: "ar_SY", # Arabic - Syria
  1463.     0x2c01: "ar_JO", # Arabic - Jordan
  1464.     0x3001: "ar_LB", # Arabic - Lebanon
  1465.     0x3401: "ar_KW", # Arabic - Kuwait
  1466.     0x3801: "ar_AE", # Arabic - United Arab Emirates
  1467.     0x3c01: "ar_BH", # Arabic - Bahrain
  1468.     0x4001: "ar_QA", # Arabic - Qatar
  1469.     0x042b: "hy_AM", # Armenian
  1470.     0x042c: "az_AZ", # Azeri Latin
  1471.     0x082c: "az_AZ", # Azeri - Cyrillic
  1472.     0x042d: "eu_ES", # Basque
  1473.     0x0423: "be_BY", # Belarusian
  1474.     0x0445: "bn_IN", # Begali
  1475.     0x201a: "bs_BA", # Bosnian
  1476.     0x141a: "bs_BA", # Bosnian - Cyrillic
  1477.     0x047e: "br_FR", # Breton - France
  1478.     0x0402: "bg_BG", # Bulgarian
  1479.     0x0403: "ca_ES", # Catalan
  1480.     0x0004: "zh_CHS",# Chinese - Simplified
  1481.     0x0404: "zh_TW", # Chinese - Taiwan
  1482.     0x0804: "zh_CN", # Chinese - PRC
  1483.     0x0c04: "zh_HK", # Chinese - Hong Kong S.A.R.
  1484.     0x1004: "zh_SG", # Chinese - Singapore
  1485.     0x1404: "zh_MO", # Chinese - Macao S.A.R.
  1486.     0x7c04: "zh_CHT",# Chinese - Traditional
  1487.     0x041a: "hr_HR", # Croatian
  1488.     0x101a: "hr_BA", # Croatian - Bosnia
  1489.     0x0405: "cs_CZ", # Czech
  1490.     0x0406: "da_DK", # Danish
  1491.     0x048c: "gbz_AF",# Dari - Afghanistan
  1492.     0x0465: "div_MV",# Divehi - Maldives
  1493.     0x0413: "nl_NL", # Dutch - The Netherlands
  1494.     0x0813: "nl_BE", # Dutch - Belgium
  1495.     0x0409: "en_US", # English - United States
  1496.     0x0809: "en_GB", # English - United Kingdom
  1497.     0x0c09: "en_AU", # English - Australia
  1498.     0x1009: "en_CA", # English - Canada
  1499.     0x1409: "en_NZ", # English - New Zealand
  1500.     0x1809: "en_IE", # English - Ireland
  1501.     0x1c09: "en_ZA", # English - South Africa
  1502.     0x2009: "en_JA", # English - Jamaica
  1503.     0x2409: "en_CB", # English - Carribbean
  1504.     0x2809: "en_BZ", # English - Belize
  1505.     0x2c09: "en_TT", # English - Trinidad
  1506.     0x3009: "en_ZW", # English - Zimbabwe
  1507.     0x3409: "en_PH", # English - Phillippines
  1508.     0x0425: "et_EE", # Estonian
  1509.     0x0438: "fo_FO", # Faroese
  1510.     0x0464: "fil_PH",# Filipino
  1511.     0x040b: "fi_FI", # Finnish
  1512.     0x040c: "fr_FR", # French - France
  1513.     0x080c: "fr_BE", # French - Belgium
  1514.     0x0c0c: "fr_CA", # French - Canada
  1515.     0x100c: "fr_CH", # French - Switzerland
  1516.     0x140c: "fr_LU", # French - Luxembourg
  1517.     0x180c: "fr_MC", # French - Monaco
  1518.     0x0462: "fy_NL", # Frisian - Netherlands
  1519.     0x0456: "gl_ES", # Galician
  1520.     0x0437: "ka_GE", # Georgian
  1521.     0x0407: "de_DE", # German - Germany
  1522.     0x0807: "de_CH", # German - Switzerland
  1523.     0x0c07: "de_AT", # German - Austria
  1524.     0x1007: "de_LU", # German - Luxembourg
  1525.     0x1407: "de_LI", # German - Liechtenstein
  1526.     0x0408: "el_GR", # Greek
  1527.     0x0447: "gu_IN", # Gujarati
  1528.     0x040d: "he_IL", # Hebrew
  1529.     0x0439: "hi_IN", # Hindi
  1530.     0x040e: "hu_HU", # Hungarian
  1531.     0x040f: "is_IS", # Icelandic
  1532.     0x0421: "id_ID", # Indonesian
  1533.     0x045d: "iu_CA", # Inuktitut
  1534.     0x085d: "iu_CA", # Inuktitut - Latin
  1535.     0x083c: "ga_IE", # Irish - Ireland
  1536.     0x0434: "xh_ZA", # Xhosa - South Africa
  1537.     0x0435: "zu_ZA", # Zulu
  1538.     0x0410: "it_IT", # Italian - Italy
  1539.     0x0810: "it_CH", # Italian - Switzerland
  1540.     0x0411: "ja_JP", # Japanese
  1541.     0x044b: "kn_IN", # Kannada - India
  1542.     0x043f: "kk_KZ", # Kazakh
  1543.     0x0457: "kok_IN",# Konkani
  1544.     0x0412: "ko_KR", # Korean
  1545.     0x0440: "ky_KG", # Kyrgyz
  1546.     0x0426: "lv_LV", # Latvian
  1547.     0x0427: "lt_LT", # Lithuanian
  1548.     0x046e: "lb_LU", # Luxembourgish
  1549.     0x042f: "mk_MK", # FYRO Macedonian
  1550.     0x043e: "ms_MY", # Malay - Malaysia
  1551.     0x083e: "ms_BN", # Malay - Brunei
  1552.     0x044c: "ml_IN", # Malayalam - India
  1553.     0x043a: "mt_MT", # Maltese
  1554.     0x0481: "mi_NZ", # Maori
  1555.     0x047a: "arn_CL",# Mapudungun
  1556.     0x044e: "mr_IN", # Marathi
  1557.     0x047c: "moh_CA",# Mohawk - Canada
  1558.     0x0450: "mn_MN", # Mongolian
  1559.     0x0461: "ne_NP", # Nepali
  1560.     0x0414: "nb_NO", # Norwegian - Bokmal
  1561.     0x0814: "nn_NO", # Norwegian - Nynorsk
  1562.     0x0482: "oc_FR", # Occitan - France
  1563.     0x0448: "or_IN", # Oriya - India
  1564.     0x0463: "ps_AF", # Pashto - Afghanistan
  1565.     0x0429: "fa_IR", # Persian
  1566.     0x0415: "pl_PL", # Polish
  1567.     0x0416: "pt_BR", # Portuguese - Brazil
  1568.     0x0816: "pt_PT", # Portuguese - Portugal
  1569.     0x0446: "pa_IN", # Punjabi
  1570.     0x046b: "quz_BO",# Quechua (Bolivia)
  1571.     0x086b: "quz_EC",# Quechua (Ecuador)
  1572.     0x0c6b: "quz_PE",# Quechua (Peru)
  1573.     0x0418: "ro_RO", # Romanian - Romania
  1574.     0x0417: "rm_CH", # Raeto-Romanese
  1575.     0x0419: "ru_RU", # Russian
  1576.     0x243b: "smn_FI",# Sami Finland
  1577.     0x103b: "smj_NO",# Sami Norway
  1578.     0x143b: "smj_SE",# Sami Sweden
  1579.     0x043b: "se_NO", # Sami Northern Norway
  1580.     0x083b: "se_SE", # Sami Northern Sweden
  1581.     0x0c3b: "se_FI", # Sami Northern Finland
  1582.     0x203b: "sms_FI",# Sami Skolt
  1583.     0x183b: "sma_NO",# Sami Southern Norway
  1584.     0x1c3b: "sma_SE",# Sami Southern Sweden
  1585.     0x044f: "sa_IN", # Sanskrit
  1586.     0x0c1a: "sr_SP", # Serbian - Cyrillic
  1587.     0x1c1a: "sr_BA", # Serbian - Bosnia Cyrillic
  1588.     0x081a: "sr_SP", # Serbian - Latin
  1589.     0x181a: "sr_BA", # Serbian - Bosnia Latin
  1590.     0x046c: "ns_ZA", # Northern Sotho
  1591.     0x0432: "tn_ZA", # Setswana - Southern Africa
  1592.     0x041b: "sk_SK", # Slovak
  1593.     0x0424: "sl_SI", # Slovenian
  1594.     0x040a: "es_ES", # Spanish - Spain
  1595.     0x080a: "es_MX", # Spanish - Mexico
  1596.     0x0c0a: "es_ES", # Spanish - Spain (Modern)
  1597.     0x100a: "es_GT", # Spanish - Guatemala
  1598.     0x140a: "es_CR", # Spanish - Costa Rica
  1599.     0x180a: "es_PA", # Spanish - Panama
  1600.     0x1c0a: "es_DO", # Spanish - Dominican Republic
  1601.     0x200a: "es_VE", # Spanish - Venezuela
  1602.     0x240a: "es_CO", # Spanish - Colombia
  1603.     0x280a: "es_PE", # Spanish - Peru
  1604.     0x2c0a: "es_AR", # Spanish - Argentina
  1605.     0x300a: "es_EC", # Spanish - Ecuador
  1606.     0x340a: "es_CL", # Spanish - Chile
  1607.     0x380a: "es_UR", # Spanish - Uruguay
  1608.     0x3c0a: "es_PY", # Spanish - Paraguay
  1609.     0x400a: "es_BO", # Spanish - Bolivia
  1610.     0x440a: "es_SV", # Spanish - El Salvador
  1611.     0x480a: "es_HN", # Spanish - Honduras
  1612.     0x4c0a: "es_NI", # Spanish - Nicaragua
  1613.     0x500a: "es_PR", # Spanish - Puerto Rico
  1614.     0x0441: "sw_KE", # Swahili
  1615.     0x041d: "sv_SE", # Swedish - Sweden
  1616.     0x081d: "sv_FI", # Swedish - Finland
  1617.     0x045a: "syr_SY",# Syriac
  1618.     0x0449: "ta_IN", # Tamil
  1619.     0x0444: "tt_RU", # Tatar
  1620.     0x044a: "te_IN", # Telugu
  1621.     0x041e: "th_TH", # Thai
  1622.     0x041f: "tr_TR", # Turkish
  1623.     0x0422: "uk_UA", # Ukrainian
  1624.     0x0420: "ur_PK", # Urdu
  1625.     0x0820: "ur_IN", # Urdu - India
  1626.     0x0443: "uz_UZ", # Uzbek - Latin
  1627.     0x0843: "uz_UZ", # Uzbek - Cyrillic
  1628.     0x042a: "vi_VN", # Vietnamese
  1629.     0x0452: "cy_GB", # Welsh
  1630. }
  1631.  
  1632. def _print_locale():
  1633.  
  1634.     """ Test function.
  1635.     """
  1636.     categories = {}
  1637.     def _init_categories(categories=categories):
  1638.         for k,v in globals().items():
  1639.             if k[:3] == 'LC_':
  1640.                 categories[k] = v
  1641.     _init_categories()
  1642.     del categories['LC_ALL']
  1643.  
  1644.     print 'Locale defaults as determined by getdefaultlocale():'
  1645.     print '-'*72
  1646.     lang, enc = getdefaultlocale()
  1647.     print 'Language: ', lang or '(undefined)'
  1648.     print 'Encoding: ', enc or '(undefined)'
  1649.     print
  1650.  
  1651.     print 'Locale settings on startup:'
  1652.     print '-'*72
  1653.     for name,category in categories.items():
  1654.         print name, '...'
  1655.         lang, enc = getlocale(category)
  1656.         print '   Language: ', lang or '(undefined)'
  1657.         print '   Encoding: ', enc or '(undefined)'
  1658.         print
  1659.  
  1660.     print
  1661.     print 'Locale settings after calling resetlocale():'
  1662.     print '-'*72
  1663.     resetlocale()
  1664.     for name,category in categories.items():
  1665.         print name, '...'
  1666.         lang, enc = getlocale(category)
  1667.         print '   Language: ', lang or '(undefined)'
  1668.         print '   Encoding: ', enc or '(undefined)'
  1669.         print
  1670.  
  1671.     try:
  1672.         setlocale(LC_ALL, "")
  1673.     except:
  1674.         print 'NOTE:'
  1675.         print 'setlocale(LC_ALL, "") does not support the default locale'
  1676.         print 'given in the OS environment variables.'
  1677.     else:
  1678.         print
  1679.         print 'Locale settings after calling setlocale(LC_ALL, ""):'
  1680.         print '-'*72
  1681.         for name,category in categories.items():
  1682.             print name, '...'
  1683.             lang, enc = getlocale(category)
  1684.             print '   Language: ', lang or '(undefined)'
  1685.             print '   Encoding: ', enc or '(undefined)'
  1686.             print
  1687.  
  1688. ###
  1689.  
  1690. try:
  1691.     LC_MESSAGES
  1692. except NameError:
  1693.     pass
  1694. else:
  1695.     __all__.append("LC_MESSAGES")
  1696.  
  1697. if __name__=='__main__':
  1698.     print 'Locale aliasing:'
  1699.     print
  1700.     _print_locale()
  1701.     print
  1702.     print 'Number formatting:'
  1703.     print
  1704.     _test()
  1705.